(Fbyte_code) <Bgeq>: Add BEFORE_POTENTIAL_GC and
authorDave Love <fx@gnu.org>
Tue, 30 Jan 2001 10:07:03 +0000 (10:07 +0000)
committerDave Love <fx@gnu.org>
Tue, 30 Jan 2001 10:07:03 +0000 (10:07 +0000)
AFTER_POTENTIAL_GC.

src/bytecode.c

index 7cd38a0fe2e64798a61b28c68c776c94d27d2f3e..f2394556e2b42881bad72df32d0cfed66313693d 100644 (file)
@@ -1193,8 +1193,10 @@ If the third argument is incorrect, Emacs may crash.")
        case Bgeq:
          {
            Lisp_Object v1;
+           BEFORE_POTENTIAL_GC ();
            v1 = POP;
            TOP = Fgeq (TOP, v1);
+           AFTER_POTENTIAL_GC ();
            break;
          }